/* index page css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
  }

  header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
    padding: 20px;
  }

  .header-content {
    max-width: 800px;
    margin: 0 auto;
  }

  h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
  }

  .buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .buttons-container button {
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    background-color: #0288d1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 250px;
    margin: 0 auto;
  }

  .buttons-container button:hover {
    background-color: #01579b;
  }

  .profile-image {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin: 20px auto;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
  }

  .container .tool-button {
    padding: 20px 40px;
    font-size: 1.2rem;
    color: white;
    background-color: #02ac70;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 250px;
  }

  .container .tool-button:hover {
    background-color: #028a5a;
  }

  footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    
    bottom: 0;
  }

  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }

    .profile-image {
      width: 200px;
      height: 200px;
    }

    .buttons-container button {
      width: 200px;
    }

    .container .tool-button {
      width: 200px;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 1.5rem;
    }

    .buttons-container button {
      width: 180px;
    }

    .container .tool-button {
      width: 180px;
    }

    .profile-image {
      width: 150px;
      height: 150px;
    }
  }

  /* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header styling */
.header11 {
  background-color: #0288d1;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.logo h1 {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
}

/* Navigation styling */
nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f4f4f4;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header11 {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo h1 {
    font-size: 30px;
  }

  nav ul {
    margin-top: 10px;
    width: 100%;
    justify-content: space-around;
  }

  nav ul li {
    margin-left: 0;
  }

  nav ul li a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .header11 {
    padding: 15px;
  }

  .logo h1 {
    font-size: 26px;
  }

  nav ul li a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .header11 {
    padding: 10px;
    height: 100px;
  }

  .logo h1 {
    font-size: 24px;
    margin: 40px;
  }

  nav ul li a{
    flex-direction: column; /* Default direction */
    gap: 10px;
    height: 30px;
  }

  .header-content p{
    margin: 40px;
    line-height: 1.8;
  }

  .header-content ul li{
    margin: 40px;
    line-height: 1.8;
  }

  .header-content h2{
    margin: 40px;
  }

  nav ul {
    width: 100%;
    padding: 0;
    margin-top: 10px;
    display: block;
    text-align: center;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  nav ul li a {
    font-size: 16px;
  }
}
